mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-11-02 20:52:20 -07:00
12 lines
233 B
Python
12 lines
233 B
Python
# Copyright (c) 2019 Ultimaker B.V.
|
|
# Cura is released under the terms of the LGPLv3 or higher.
|
|
|
|
from . import SentryLogger
|
|
|
|
|
|
def getMetaData():
|
|
return {}
|
|
|
|
|
|
def register(app):
|
|
return { "logger": SentryLogger.SentryLogger() }
|