mirror of
https://github.com/mattermost/mattermost.git
synced 2026-02-03 20:40:00 -05:00
Go side: - Log hooks returned by Implemented() - Log each hook name -> ID mapping - Log OnActivate implementation status - Log OnActivate call flow Python side: - Log Implemented() return value - Log OnActivate gRPC receipt and handler invocation This is temporary debug logging to diagnose why OnActivate isn't being called for Python plugins. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
13 lines
407 B
Python
13 lines
407 B
Python
# Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
# See LICENSE.txt for license information.
|
|
|
|
"""
|
|
gRPC servicer implementations for Mattermost Python plugins.
|
|
|
|
This module provides the servicer implementations that handle hook invocations
|
|
from the Mattermost server.
|
|
"""
|
|
|
|
from mattermost_plugin.servicers.hooks_servicer import PluginHooksServicerImpl
|
|
|
|
__all__ = ["PluginHooksServicerImpl"]
|