Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Changes some chat messages #81

Merged
merged 2 commits into from
Jun 28, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions TGServerService/DreamDaemon.cs
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ void InitDreamDaemon()
if (Proc == null)
throw new Exception("GetProcessById returned null!");
TGServerService.WriteInfo("Reattached to running DD process!", TGServerService.EventID.DDReattachSuccess);
SendMessage("DD: Update complete. Watchdog reactivated...");
SendMessage("DD: Update complete. Watch dog reactivated...");

//start wd
InitInterop();
Expand Down Expand Up @@ -93,7 +93,7 @@ void DisposeDreamDaemon()
Thread.Sleep(1000);
}
else
SendMessage("DD: Detaching watchdog for update!");
SendMessage("DD: Detaching watch dog for update!");
}
else if (Detach)
{
Expand Down Expand Up @@ -248,7 +248,7 @@ void Watchdog()
else
{
retries = 0;
var msg = "DD: DreamDaemon crashed! Rebooting...";
var msg = "DD: DreamDaemon crashed! Watchdog rebooting DD...";
SendMessage(msg);
TGServerService.WriteWarning(msg, TGServerService.EventID.DDWatchdogRebootingServer);
}
Expand Down