mirror of
https://github.com/pushbits/server.git
synced 2025-06-02 10:42:08 +02:00
Add application IDs to debugging output
This commit is contained in:
parent
af3b21523f
commit
47fd9441cd
2 changed files with 2 additions and 2 deletions
|
@ -36,7 +36,7 @@ func (d *Dispatcher) RegisterApplication(id uint, name, token, user string) (str
|
|||
|
||||
// DeregisterApplication deletes a channel for an application.
|
||||
func (d *Dispatcher) DeregisterApplication(a *model.Application, u *model.User) error {
|
||||
log.Printf("Deregistering application with ID %s.\n", a.MatrixID)
|
||||
log.Printf("Deregistering application %s (ID %d) with Matrix ID %s.\n", a.Name, a.ID, a.MatrixID)
|
||||
|
||||
kickUser := &gomatrix.ReqKickUser{
|
||||
Reason: "This application was deleted",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue