0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-08-04 09:34:46 +02:00

Import logger

This commit is contained in:
Erik Johnston 2017-10-27 10:54:02 +01:00
parent 82d8c1bacb
commit e27b76d117

View file

@ -13,6 +13,8 @@
# See the License for the specific language governing permissions and
# limitations under the License.
import logging
from twisted.internet import defer
from synapse.api.errors import SynapseError
@ -22,6 +24,9 @@ from synapse.util.logcontext import preserve_fn
from signedjson.sign import sign_json
logger = logging.getLogger(__name__)
# Default validity duration for new attestations we create
DEFAULT_ATTESTATION_LENGTH_MS = 3 * 24 * 60 * 60 * 1000