Skip to content

Commit

Permalink
Updated not-implemented warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
jonbarrow committed Apr 8, 2023
1 parent e5685a2 commit 3ff1811
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion friends/3ds/get_friend_mii.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ func (protocol *Friends3DSProtocol) GetFriendMii(handler func(err error, client

func (protocol *Friends3DSProtocol) HandleGetFriendMii(packet nex.PacketInterface) {
if protocol.GetFriendMiiHandler == nil {
globals.Logger.Warning("Friends3DS::GetFriendMiiHandler not implemented")
globals.Logger.Warning("Friends3DS::GetFriendMii not implemented")
go globals.RespondNotImplemented(packet, ProtocolID)
return
}
Expand Down
2 changes: 1 addition & 1 deletion friends/3ds/get_friend_presence.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ func (protocol *Friends3DSProtocol) GetFriendPresence(handler func(err error, cl

func (protocol *Friends3DSProtocol) HandleGetFriendPresence(packet nex.PacketInterface) {
if protocol.GetFriendPresenceHandler == nil {
globals.Logger.Warning("Friends3DS::GetFriendPresenceHandler not implemented")
globals.Logger.Warning("Friends3DS::GetFriendPresence not implemented")
go globals.RespondNotImplemented(packet, ProtocolID)
return
}
Expand Down
2 changes: 1 addition & 1 deletion matchmake-extension/auto_matchmake_postpone.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ func (protocol *MatchmakeExtensionProtocol) AutoMatchmake_Postpone(handler func(

func (protocol *MatchmakeExtensionProtocol) HandleAutoMatchmake_Postpone(packet nex.PacketInterface) {
if protocol.AutoMatchmake_PostponeHandler == nil {
globals.Logger.Warning("MatchmakeExtension::AutoMatchmake_PostponeHandler not implemented")
globals.Logger.Warning("MatchmakeExtension::AutoMatchmake_Postpone not implemented")
go globals.RespondNotImplemented(packet, ProtocolID)
return
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ func (protocol *MatchmakeExtensionProtocol) AutoMatchmakeWithSearchCriteria_Post

func (protocol *MatchmakeExtensionProtocol) HandleAutoMatchmakeWithSearchCriteria_Postpone(packet nex.PacketInterface) {
if protocol.AutoMatchmakeWithSearchCriteria_PostponeHandler == nil {
globals.Logger.Warning("MatchmakeExtension::AutoMatchmakeWithSearchCriteria_PostponeHandler not implemented")
globals.Logger.Warning("MatchmakeExtension::AutoMatchmakeWithSearchCriteria_Postpone not implemented")
go globals.RespondNotImplemented(packet, ProtocolID)
return
}
Expand Down
2 changes: 1 addition & 1 deletion matchmake-extension/close_participation.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ func (protocol *MatchmakeExtensionProtocol) CloseParticipation(handler func(err

func (protocol *MatchmakeExtensionProtocol) HandleCloseParticipation(packet nex.PacketInterface) {
if protocol.CloseParticipationHandler == nil {
globals.Logger.Warning("MatchmakeExtension::CloseParticipationHandler not implemented")
globals.Logger.Warning("MatchmakeExtension::CloseParticipation not implemented")
go globals.RespondNotImplemented(packet, ProtocolID)
return
}
Expand Down
2 changes: 1 addition & 1 deletion matchmake-extension/get_playing_session.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ func (protocol *MatchmakeExtensionProtocol) GetPlayingSession(handler func(err e

func (protocol *MatchmakeExtensionProtocol) HandleGetPlayingSession(packet nex.PacketInterface) {
if protocol.GetPlayingSessionHandler == nil {
globals.Logger.Warning("MatchmakeExtension::GetPlayingSessionHandler not implemented")
globals.Logger.Warning("MatchmakeExtension::GetPlayingSession not implemented")
go globals.RespondNotImplemented(packet, ProtocolID)
return
}
Expand Down

0 comments on commit 3ff1811

Please sign in to comment.